home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-06-16 | 2.4 KB | 102 lines | [TEXT/MPS ] |
- #
- # SCSI Async Sample
- # Copyright © 1993, Apple Computer Inc.
- # All rights reserved.
- #
- Src = ":Src:"
- Obj = ":Obj:"
- Objects = ∂
- {Obj}AsyncSCSIPresent.c.o ∂
- {Obj}ContinueTesting.c.o ∂
- {Obj}DialogUtilities.c.o ∂
- {Obj}DisplayTestParameters.c.o ∂
- {Obj}DisplayTestResults.c.o ∂
- {Obj}DoSCSISynchronousIO.c.o ∂
- {Obj}GetDevicesToTest.c.o ∂
- {Obj}GetSCSICDBLength.c.o ∂
- {Obj}LogManager.c.o ∂
- {Obj}NumericFilter.c.o ∂
- {Obj}MicrosecondDelta.c.o ∂
- {Obj}MicrosecondTrapPresent.c.o ∂
- {Obj}SCSIAsyncSampleMain.c.o ∂
- {Obj}SCSIBusInquiry.c.o ∂
- {Obj}SpinCursor.c.o ∂
- {Obj}StringFormat.c.o ∂
- {Obj}WindowUtilities.c.o
-
- #
- # Directory dependencies. "Everything in the {Obj} directory depends on something
- # in the {Src} directory." Note: you can throw away the contents of the {Obj}
- # directory if you want to rebuild from scratch.
- #
- {Obj} ƒ {Src}
-
- #
- # Compiler dependencies -- common to all compilations The idea here is that all
- # sources are stored in the {Src} subdirectory, and all objects and code resources
- # output by the linker or Rez are stored in the {Obj} subdirectory.
- #
- .c.o ƒ .c ∂
- {Src}SCSI.h ∂
- {Src}DialogUtilities.h ∂
- {Src}LogManager.h ∂
- {Src}SCSIDefinitions.h ∂
- {Src}MicrosecondTrap.h ∂
- {Src}SCSIAsyncSample.h
- C {COptions} ∂
- -o {TargDir}{Default}.c.o ∂
- {DepDir}{Default}.c
-
- .a.o ƒ .a
- Asm {AOptions} ∂
- -o {TargDir}{Default}.a.o ∂
- {DepDir}{Default}.a
-
- #
- # Build the MetroWerks resources
- #
- MetroWerks ƒ ∂
- "SCSIAsyncSample.µ.rsrc"
- echo "MetroWerks resources created"
-
- #
- # Build the application.
- #
- "SCSI Async Sample MPW" ƒƒ ∂
- MakeFile ∂
- {Objects}
- Link ∂
- -t APPL ∂
- {Objects} ∂
- "{CLibraries}"CSANELib.o ∂
- "{Libraries}"Runtime.o ∂
- "{CLibraries}"StdCLib.o ∂
- "{Libraries}"Interface.o ∂
- -o "SCSI Async Sample MPW"
-
- "SCSI Async Sample MPW" ƒƒ ∂
- MakeFile ∂
- "SCSIAsyncSample.µ.rsrc" ∂
- {Src}SCSIAsyncSample.r
- Rez ∂
- {Src}SCSIAsyncSample.r ∂
- -append ∂
- -t APPL ∂
- -i "{CIncludes}" ∂
- -i "{RIncludes}" ∂
- -o "SCSI Async Sample MPW"
-
- "SCSIAsyncSample.µ.rsrc" ƒ ∂
- MakeFile ∂
- {Src}SCSIAsyncSample.h ∂
- {Src}SCSIAsyncSample.r
- Rez ∂
- {Src}SCSIAsyncSample.r ∂
- -append ∂
- -t rsrc ∂
- -c RSED ∂
- -i "{CIncludes}" ∂
- -i "{RIncludes}" ∂
- -o {targ}
-
-